home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / hsc / examples / fetzenschaedl / macro.hsc next >
Text File  |  1996-09-30  |  1KB  |  53 lines

  1. <*
  2. ** here are the macros to our example project
  3. *>
  4.  
  5. <*
  6. ** macro ITS_ME:
  7. **
  8. ** this is just a simple shortcut for the authors email address
  9. *>
  10. <$macro ITS_ME><ADDRESS>Its Me(me@some.where)</ADDRESS></$macro>
  11.  
  12. <*
  13. ** macro WEBPAGE:
  14. **
  15. **
  16. *>
  17. <$macro WEBPAGE>
  18. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">        <* SGML header *>
  19. <HTML>
  20. <!-- this page was designed using hsc -->           <* important comment *>
  21. </$macro>
  22.  
  23. <*-------------------------------------*>
  24.  
  25. <$macro /WEBPAGE>
  26. </BODY>                      <* closing BODY started in HEADING *>
  27. </HTML>                      <* closing HTML started in WEBPAGE *>
  28. </$macro>
  29.  
  30. <*
  31. ** macro HEADING
  32. **
  33. ** setup HEAD-part of a page: set <TITLE>-text and Heading
  34. *>
  35. <$macro HEADING TITLE:string>
  36. <HEAD>
  37.   <TITLE><(Title)></TITLE>   <* insert title and heading *>
  38.   <H1><(Title)></H1>
  39. </HEAD>
  40. <BODY>                       <* BODY starts here, but ends in </WEBPAGE> *>
  41. </$macro>
  42.  
  43. <*
  44. ** macro FOOTLINE
  45. **
  46. ** insert author's email address and current date & time
  47. ** at end of page
  48. *>
  49. <$macro FOOTLINE>
  50. <HR>
  51.   Updated by <ITS_ME> at <(GetTime())>
  52. </$macro>
  53.